home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1191 / 1191.xpi / chrome / reminderfox.jar / content / reminderfox / searchbar / search-overlay.xul < prev   
Extensible Markup Language  |  2009-07-30  |  2KB  |  49 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- CSS Files -->
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> 
  6. <?xml-stylesheet href="chrome://reminderfox/skin/rmSearchBox.css"  type="text/css"?>
  7.  
  8.  
  9. <!-- DTD Files -->
  10. <!DOCTYPE window 
  11. [
  12.     <!ENTITY % dtd1 SYSTEM "chrome://reminderfox/locale/reminderfox.dtd" > %dtd1;
  13. ]>
  14.  
  15. <!-- //gW  Overlay to add "Reminder" search Item field +++ with spy glass +++  -->
  16.  
  17. <overlay
  18.    id="search-overlay"
  19.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
  20.        <stringbundleset id="stringbundleset">
  21.         <stringbundle     id="reminderFox-bundle" 
  22.                         src="chrome://reminderfox/locale/reminderfox.properties"/>
  23.     </stringbundleset>
  24.  
  25.         <textbox id="rmSearchText"  value="" class="rmSearchText"
  26.                     onkeydown="rmOnSearchKeyPress(event);" onkeyup="rmOnSearchKeyUp(event);" onfocus="rmOnSearchFocus(event);">  
  27.             
  28.             <toolbarbutton id="qsChange" type="menu">
  29.                 <menupopup id="quick-search-menupopup" value="2" persist="value" 
  30.                         popupalign="topleft" 
  31.                         popupanchor="bottomleft">
  32.                         
  33.                     <!-- value:   sets menuNo and internal js/XUL naming,
  34.                          label:   is used with dtd/UI                         -->
  35.                     <menuitem value="0" label="&rf.add.reminders.column.description.label;" type="radio"  
  36.                                 oncommand="rmChangeQuickSearchMode(this)"/>
  37.                     <menuitem value="1" label="&rf.add.reminders.column.categories.label;" type="radio" 
  38.                                 oncommand="rmChangeQuickSearchMode(this)"/>
  39.                     <menuitem value="2" label="&rf.add.reminders.column.notes.label;" type="radio" 
  40.                                 oncommand="rmChangeQuickSearchMode(this)"/>
  41.                     <menuitem value="3" label="&rf.reminderoptions.location.header;" type="radio" 
  42.                                 oncommand="rmChangeQuickSearchMode(this)"/>
  43.                 </menupopup>
  44.             </toolbarbutton>
  45.             <text id="rmSearchItem" />
  46.         </textbox>    
  47.  
  48. </overlay>
  49.